 :root {
            --primary-color: #F7A8B8;
            --secondary-color: #5D4037;
            --accent-color: #FFD54F;
            --light-color: #FFF9F2;
            --dark-color: #3E2723;
            --text-color: #4E342E;
            --white: #FFFFFF;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            background-color: var(--light-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-weight: 700;
            color: var(--dark-color);
        }

        h1 {
            font-size: 3.8rem;
            font-family: 'Dancing Script', cursive;
            color: var(--primary-color);
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
        }

        h2 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
            font-family: 'Playfair Display', serif;
        }

        h2:after {
            content: '';
            position: absolute;
            width: 60%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            bottom: -10px;
            left: 0;
            border-radius: 3px;
        }

        .container {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Styles - Simplified for Gallery */
        header {
            background-color: var(--white);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
            animation: slideDown 0.5s ease;
        }

        @keyframes slideDown {
            from { transform: translateY(-100%); }
            to { transform: translateY(0); }
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        /* ===== UPDATED LOGO CSS START ===== */
        .logo-container {
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: transform 0.3s;
        }

        .logo-container:hover {
            transform: scale(1.03);
        }

        .logo-img-container {
            position: relative;
            margin-right: 20px;
        }

        .logo-circle {
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, var(--primary-color), #FFB6C1);
            border-radius: 50%;
            box-shadow: 0 6px 15px rgba(247, 168, 184, 0.4);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-circle img {
            width: 90%;
            height: 90%;
            object-fit: contain;
            border-radius: 50%;
        }

        .logo-circle:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.3) 1%, transparent 20%);
            transform: rotate(30deg);
        }

        .logo-text-container {
            display: flex;
            flex-direction: column;
        }

        .logo-main {
            font-family: 'Dancing Script', cursive;
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
            letter-spacing: 1px;
        }

        .logo-tagline {
            font-size: 1rem;
            color: var(--secondary-color);
            font-weight: 600;
            letter-spacing: 2px;
            margin-top: 5px;
            text-transform: uppercase;
        }
        /* ===== UPDATED LOGO CSS END ===== */

        /* Simple Navbar for Gallery Page */
        .gallery-nav {
            display: flex;
            align-items: center;
        }

        .back-to-reviews {
            text-decoration: none;
            color: var(--dark-color);
            font-weight: 600;
            font-size: 1.15rem;
            transition: all 0.3s;
            position: relative;
            padding: 8px 20px 8px 0;
            display: inline-block;
        }

        .back-to-reviews i {
            margin-right: 10px;
            transition: transform 0.3s;
        }

        .back-to-reviews:hover {
            color: var(--primary-color);
        }

        .back-to-reviews:hover i {
            transform: translateX(-5px);
        }

        .back-to-reviews:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            bottom: 0;
            left: 0;
            transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border-radius: 2px;
        }

        .back-to-reviews:hover:after {
            width: 100%;
        }

        .mobile-menu {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--dark-color);
            transition: color 0.3s;
        }

        .mobile-menu:hover {
            color: var(--primary-color);
        }

        /* Page Header */
        .page-header {
            background: linear-gradient(rgba(255, 249, 242, 0.9), rgba(255, 249, 242, 0.95)), url('https://images.unsplash.com/photo-1555507036-ab794f27d2e9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
            background-size: cover;
            background-position: center;
            padding: 100px 0 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-header:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23f7a8b8' fill-opacity='0.15' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.5;
            z-index: 0;
        }

        .page-header-content {
            position: relative;
            z-index: 1;
        }

        .page-title {
            margin-bottom: 30px;
        }

        .page-intro {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto;
            color: var(--text-color);
            line-height: 1.8;
        }

        /* Gallery Section */
        .gallery-section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 3rem;
        }

        .section-title p {
            font-size: 1.3rem;
            color: var(--text-color);
            max-width: 800px;
            margin: 25px auto 0;
            line-height: 1.8;
        }

        /* Gallery Grid - 4x2 layout (7 items: 6 photos + 1 video) */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-bottom: 80px;
        }

        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s;
            aspect-ratio: 1/1;
            cursor: pointer;
            background-color: var(--white);
            
            /* Initial state for animation */
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.4s;
        }

        /* Animation classes for different columns */
        .gallery-item.animate-left {
            transform: translateX(-100px);
            opacity: 0;
        }

        .gallery-item.animate-right {
            transform: translateX(100px);
            opacity: 0;
        }

        .gallery-item.animate-center {
            transform: translateY(50px);
            opacity: 0;
        }

        .gallery-item.animated {
            opacity: 1;
            transform: translateX(0) translateY(0);
        }

        .gallery-item.video-item:hover .play-overlay {
            transform: scale(1.1);
        }

        .gallery-item img, .gallery-item video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .gallery-item video {
            background-color: #000;
        }

        .item-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.973) 80%);
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s;
            font-size: 20px;
        }
        .item-overlay h4 {
            font-size: 1.5rem;
            margin-bottom: 5px;
            color: white;
        }

        .gallery-item:hover .item-overlay {
            transform: translateY(0);
        }

        .video-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 3rem;
            opacity: 0.8;
            transition: all 0.3s;
            z-index: 2;
        }

        .play-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        /* Lightbox / Modal */
        .lightbox-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .lightbox-overlay.active {
            display: flex;
            opacity: 1;
        }

        .lightbox-content {
            max-width: 90%;
            max-height: 90vh;
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s;
        }

        .lightbox-overlay.active .lightbox-content {
            transform: scale(1);
        }

        .lightbox-content img, .lightbox-content video {
            width: 100%;
            height: auto;
            max-height: 80vh;
            border-radius: 10px;
            display: block;
        }

        .lightbox-content video {
            background-color: #000;
        }

        .lightbox-close {
            position: absolute;
            top: -50px;
            right: 0;
            background: none;
            border: none;
            color: white;
            font-size: 2.5rem;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .lightbox-close:hover {
            transform: rotate(90deg);
            color: var(--primary-color);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            transform: translateY(-50%);
        }

        .lightbox-prev, .lightbox-next {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-prev:hover, .lightbox-next:hover {
            background: var(--primary-color);
            transform: scale(1.1);
        }

        .lightbox-caption {
            position: absolute;
            bottom: -40px;
            left: 0;
            right: 0;
            color: white;
            text-align: center;
            font-size: 1.2rem;
            padding: 10px;
        }

        /* Zoom Controls for Lightbox */
        .zoom-controls {
            position: absolute;
            bottom: -80px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            background: rgba(255, 255, 255, 0.1);
            padding: 10px 20px;
            border-radius: 30px;
            backdrop-filter: blur(10px);
        }

        .zoom-btn {
            background: var(--primary-color);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .zoom-btn:hover {
            background: var(--accent-color);
            transform: scale(1.1);
        }

        .reset-zoom {
            background: var(--secondary-color);
        }

        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: var(--light-color);
            padding: 100px 0 40px;
            position: relative;
        }

        footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath d='M500,97C126.7,96.3,0.8,19.8,0,0v100l1000,0V0C999.2,19.8,873.3,96.3,500,97z' fill='%233E2723'/%3E%3C/svg%3E");
            background-size: 100% 120px;
            background-position: top;
            background-repeat: no-repeat;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 60px;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }

        .footer-logo {
            font-family: 'Dancing Script', cursive;
            font-size: 3.5rem;
            color: var(--primary-color);
            margin-bottom: 25px;
            line-height: 1;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
        }

        .footer-about p {
            margin-bottom: 30px;
            opacity: 0.85;
            line-height: 1.9;
            font-size: 1.05rem;
        }

        .footer-links h3, .footer-contact h3 {
            font-size: 1.6rem;
            margin-bottom: 35px;
            color: var(--white);
            font-family: 'Playfair Display', serif;
            position: relative;
            padding-bottom: 15px;
        }

        .footer-links h3:after, .footer-contact h3:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            bottom: 0;
            left: 0;
            border-radius: 2px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 18px;
        }

        .footer-links ul li a {
            color: var(--light-color);
            text-decoration: none;
            opacity: 0.85;
            transition: all 0.3s;
            display: inline-block;
            font-size: 1.05rem;
        }

        .footer-links ul li a:hover {
            opacity: 1;
            color: var(--primary-color);
            transform: translateX(8px);
        }

        .footer-contact p {
            margin-bottom: 25px;
            opacity: 0.85;
            display: flex;
            align-items: flex-start;
            line-height: 1.7;
            font-size: 1.05rem;
        }

        .footer-contact i {
            margin-right: 18px;
            color: var(--primary-color);
            font-size: 1.3rem;
            margin-top: 3px;
        }

        .footer-social {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }

        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.12);
            color: var(--light-color);
            border-radius: 50%;
            font-size: 1.3rem;
            transition: all 0.4s;
            text-decoration: none;
        }

        .social-icon:hover {
            background: linear-gradient(135deg, var(--primary-color), #FF80AB);
            transform: translateY(-8px) rotate(10deg);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
        }

        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            font-size: 1rem;
            opacity: 0.8;
            position: relative;
            z-index: 1;
        }

        .copyright i.fa-heart {
            color: var(--primary-color);
            margin: 0 5px;
            animation: heartbeat 1.5s infinite;
        }

        @keyframes heartbeat {
            0% { transform: scale(1); }
            5% { transform: scale(1.2); }
            10% { transform: scale(1.1); }
            15% { transform: scale(1.3); }
            50% { transform: scale(1); }
            100% { transform: scale(1); }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 992px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            /* Adjust animations for 2-column layout */
            .gallery-item.animate-left {
                transform: translateX(-50px);
            }
            
            .gallery-item.animate-right {
                transform: translateX(50px);
            }
        }

        @media (max-width: 768px) {
            .mobile-menu {
                display: block;
            }
            
            .gallery-nav {
                display: none;
                position: absolute;
                top: 100%;
                right: 0;
                background-color: var(--white);
                padding: 25px;
                box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
                z-index: 100;
                border-top: 2px solid var(--light-color);
                border-radius: 0 0 0 20px;
            }
            
            .gallery-nav.show {
                display: block;
            }
            
            .page-header {
                padding: 80px 0 50px;
            }
            
            .gallery-section {
                padding: 60px 0;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
            }
            
            /* ===== UPDATED RESPONSIVE LOGO STYLES ===== */
            .logo-main {
                font-size: 2.3rem;
            }
            
            .logo-circle {
                width: 65px;
                height: 65px;
                font-size: 1.8rem;
            }
            
            .section-title h2 {
                font-size: 2.5rem;
            }
            
            .lightbox-nav {
                padding: 0 10px;
            }
            
            .lightbox-prev, .lightbox-next {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            
            .zoom-controls {
                bottom: -70px;
            }
            
            /* Adjust animations for 1-column layout */
            .gallery-item.animate-left,
            .gallery-item.animate-right,
            .gallery-item.animate-center {
                transform: translateY(50px);
            }
        }

        @media (max-width: 576px) {
            h1 {
                font-size: 3rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            /* ===== UPDATED RESPONSIVE LOGO STYLES ===== */
            .logo-main {
                font-size: 2rem;
            }
            
            .logo-circle {
                width: 55px;
                height: 55px;
                font-size: 1.6rem;
                margin-right: 15px;
            }
            
            .logo-tagline {
                font-size: 0.85rem;
                letter-spacing: 1px;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .lightbox-content {
                max-width: 95%;
            }
            
            .zoom-controls {
                bottom: -60px;
                padding: 8px 15px;
            }
            
            .zoom-btn {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
        }